home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue67 / express / PlotFormUnit.dfm / PlotFormUnit.txt
Encoding:
Text File  |  2001-01-31  |  2.3 KB  |  124 lines

  1. object PlotForm: TPlotForm
  2.   Left = 321
  3.   Top = 219
  4.   Width = 561
  5.   Height = 339
  6.   Caption = 'Plotting with Parser10'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   OnCreate = FormCreate
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Chart: TChart
  18.     Left = 0
  19.     Top = 33
  20.     Width = 553
  21.     Height = 279
  22.     BackWall.Brush.Color = clWhite
  23.     BackWall.Brush.Style = bsClear
  24.     Legend.Visible = False
  25.     Title.Text.Strings = (
  26.       'TChart')
  27.     BottomAxis.Title.Caption = 'X'
  28.     LeftAxis.Title.Caption = 'Y'
  29.     View3D = False
  30.     Align = alClient
  31.     TabOrder = 0
  32.     object LineSeries: TFastLineSeries
  33.       Marks.ArrowLength = 8
  34.       Marks.Visible = False
  35.       SeriesColor = clRed
  36.       LinePen.Color = clRed
  37.       XValues.Name = 'X'
  38.       XValues.Order = loAscending
  39.       YValues.Name = 'Y'
  40.       YValues.Order = loNone
  41.     end
  42.   end
  43.   object Panel1: TPanel
  44.     Left = 0
  45.     Top = 0
  46.     Width = 553
  47.     Height = 33
  48.     Align = alTop
  49.     TabOrder = 1
  50.     object Label1: TLabel
  51.       Left = 16
  52.       Top = 8
  53.       Width = 19
  54.       Height = 13
  55.       Caption = 'Y = '
  56.     end
  57.     object Label2: TLabel
  58.       Left = 184
  59.       Top = 8
  60.       Width = 16
  61.       Height = 13
  62.       Caption = 'X ='
  63.     end
  64.     object Label3: TLabel
  65.       Left = 256
  66.       Top = 8
  67.       Width = 9
  68.       Height = 13
  69.       Caption = 'to'
  70.     end
  71.     object Label4: TLabel
  72.       Left = 320
  73.       Top = 8
  74.       Width = 20
  75.       Height = 13
  76.       Caption = 'step'
  77.     end
  78.     object ExpressionEdit: TEdit
  79.       Left = 39
  80.       Top = 5
  81.       Width = 121
  82.       Height = 21
  83.       TabOrder = 0
  84.       Text = 'sin(X/2)*cos(x/3)'
  85.     end
  86.     object XFromEdit: TEdit
  87.       Left = 208
  88.       Top = 5
  89.       Width = 41
  90.       Height = 21
  91.       TabOrder = 1
  92.       Text = '0'
  93.     end
  94.     object XToEdit: TEdit
  95.       Left = 272
  96.       Top = 5
  97.       Width = 41
  98.       Height = 21
  99.       TabOrder = 2
  100.       Text = '100'
  101.     end
  102.     object XStepEdit: TEdit
  103.       Left = 352
  104.       Top = 5
  105.       Width = 41
  106.       Height = 21
  107.       TabOrder = 3
  108.     end
  109.     object GoBtn: TButton
  110.       Left = 416
  111.       Top = 4
  112.       Width = 49
  113.       Height = 25
  114.       Caption = '&Go'
  115.       TabOrder = 4
  116.       OnClick = GoBtnClick
  117.     end
  118.   end
  119.   object MathExprParser: TParser
  120.     Left = 488
  121.     Top = 256
  122.   end
  123. end
  124.